home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / wattcp / unzipped / bootp / printa.c < prev    next >
Encoding:
Text File  |  1986-09-27  |  256 b   |  12 lines

  1.  
  2. printa( ddbyte, chars )
  3. unsigned long ddbyte;
  4. int chars;
  5. {
  6. int i;
  7. static char hexchars[] = { "0123456789ABCDEF" };
  8.  
  9. for( i=(chars-1); i>=0; i-- )
  10.   pchar( hexchars[ ( ( ddbyte >> (i*4) ) & 0x0fl ) ] );
  11. }
  12.